From 0efade4dde86461c03925f9228605be049071e5b Mon Sep 17 00:00:00 2001 From: vaisest Date: Sat, 11 Jul 2026 04:47:11 +0000 Subject: [PATCH] Apply changes from https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/2347 --- spec/System/TestItemMods_spec.lua.rej | 15 + spec/System/TestUtils_spec.lua | 134 + src/Classes/TradeQueryGenerator.lua.rej | 64 + src/Classes/TradeQueryRequests.lua | 3 +- src/Data/FlavourText.lua.rej | 5615 ++++ src/Data/ModCorrupted.lua.rej | 31 + src/Data/ModFlask.lua.rej | 2221 ++ src/Data/ModItemExclusive.lua.rej | 343 + src/Data/ModJewel.lua.rej | 45 + src/Data/ModVeiled.lua.rej | 12610 +++++++++ src/Data/QueryMods.lua.rej | 146 + .../TimelessJewelData/LegionPassives.lua.rej | 23015 ++++++++++++++++ src/Export/Scripts/flavourText.lua.rej | 10 + src/Export/Scripts/legionPassives.lua | 39 +- src/Export/Scripts/legionPassives.lua.rej | 9 + src/Export/Scripts/mods.lua.rej | 50 + src/Modules/Common.lua.rej | 44 + src/Modules/Utils.lua | 113 + 18 files changed, 44468 insertions(+), 39 deletions(-) create mode 100644 spec/System/TestItemMods_spec.lua.rej create mode 100644 spec/System/TestUtils_spec.lua create mode 100644 src/Classes/TradeQueryGenerator.lua.rej create mode 100644 src/Data/FlavourText.lua.rej create mode 100644 src/Data/ModCorrupted.lua.rej create mode 100644 src/Data/ModFlask.lua.rej create mode 100644 src/Data/ModItemExclusive.lua.rej create mode 100644 src/Data/ModJewel.lua.rej create mode 100644 src/Data/ModVeiled.lua.rej create mode 100644 src/Data/QueryMods.lua.rej create mode 100644 src/Data/TimelessJewelData/LegionPassives.lua.rej create mode 100644 src/Export/Scripts/flavourText.lua.rej create mode 100644 src/Export/Scripts/legionPassives.lua.rej create mode 100644 src/Export/Scripts/mods.lua.rej create mode 100644 src/Modules/Common.lua.rej create mode 100644 src/Modules/Utils.lua diff --git a/spec/System/TestItemMods_spec.lua.rej b/spec/System/TestItemMods_spec.lua.rej new file mode 100644 index 00000000000..118dba4cca2 --- /dev/null +++ b/spec/System/TestItemMods_spec.lua.rej @@ -0,0 +1,15 @@ +diff a/spec/System/TestItemMods_spec.lua b/spec/System/TestItemMods_spec.lua (rejected hunks) +@@ -7,6 +7,13 @@ describe("TetsItemMods", function() + -- newBuild() takes care of resetting everything in setup() + end) + ++ it("retains mod tags without generation weight multipliers", function() ++ local mod = data.itemMods.Item.IgniteChanceIncrease1 ++ ++ assert.same({ "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods" }, mod.tags) ++ assert.is_nil(mod.weightMultiplierKey) ++ end) ++ + it("shows duplicate selected variants in item tooltips when enabled", function() + local item = new("Item", [[ + Rarity: Unique diff --git a/spec/System/TestUtils_spec.lua b/spec/System/TestUtils_spec.lua new file mode 100644 index 00000000000..503768fac8b --- /dev/null +++ b/spec/System/TestUtils_spec.lua @@ -0,0 +1,134 @@ +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 when allowed", function() + local out = serializeAndLoad("a\nb", true) + assert.equal("a\nb", out) + end) + + it("does not use long string form for newline-free strings", function() + assert.equal('"ab"', utils.stringify("ab", true)) + end) + + it("escapes quotes and backslashes", function() + local input = 'a"b\\c' + local out = serializeAndLoad(input, true) + assert.equal(input, out) + end) + + it("preserves carriage returns and long-string delimiters when allowed", function() + local input = "a\r\n]]b" + local out = serializeAndLoad(input, true) + assert.equal(input, out) + end) + + it("normalizes all newline forms when newlines are disabled", function() + assert.equal('"a b c"', utils.stringify("a\r\nb\rc")) + 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 escaped multiline string keys", function() + local input = { ['a"\\b\n]]c'] = true } + 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.rej b/src/Classes/TradeQueryGenerator.lua.rej new file mode 100644 index 00000000000..7d190cc73e5 --- /dev/null +++ b/src/Classes/TradeQueryGenerator.lua.rej @@ -0,0 +1,64 @@ +diff a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua (rejected hunks) +@@ -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 95f8b6a5ad4..d28585a3abb 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) @@ -210,7 +211,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.rej b/src/Data/FlavourText.lua.rej new file mode 100644 index 00000000000..a72b5c913b9 --- /dev/null +++ b/src/Data/FlavourText.lua.rej @@ -0,0 +1,5615 @@ +diff a/src/Data/FlavourText.lua b/src/Data/FlavourText.lua (rejected hunks) +@@ -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/ModCorrupted.lua.rej b/src/Data/ModCorrupted.lua.rej new file mode 100644 index 00000000000..d3628e4a2d3 --- /dev/null +++ b/src/Data/ModCorrupted.lua.rej @@ -0,0 +1,31 @@ +diff a/src/Data/ModCorrupted.lua b/src/Data/ModCorrupted.lua (rejected hunks) +@@ -50,11 +50,11 @@ return { + ["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" }, } }, ++ ["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 }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, 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 }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, 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 }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, 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 }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_lightning_spell_mods", "no_physical_spell_mods", }, 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 }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, +@@ -96,9 +96,9 @@ return { + ["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" }, } }, ++ ["CorruptionIgniteChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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 }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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 }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, diff --git a/src/Data/ModFlask.lua.rej b/src/Data/ModFlask.lua.rej new file mode 100644 index 00000000000..e515fcb5004 --- /dev/null +++ b/src/Data/ModFlask.lua.rej @@ -0,0 +1,2221 @@ +diff a/src/Data/ModFlask.lua b/src/Data/ModFlask.lua (rejected hunks) +@@ -1,2138 +1,83 @@ + -- This file is automatically generated, do not edit! +--- Game data (c) Grinding Gear Games ++-- Item data (c) Grinding Gear Games + +--- Item modifier data generated by mods.lua +- +--- spell-checker: disable + return { +- ["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, +- }, +- }, +-} ++ ["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 diff --git a/src/Data/ModItemExclusive.lua.rej b/src/Data/ModItemExclusive.lua.rej new file mode 100644 index 00000000000..4b61bc4c2ca --- /dev/null +++ b/src/Data/ModItemExclusive.lua.rej @@ -0,0 +1,343 @@ +diff a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua (rejected hunks) +@@ -4,7 +4,7 @@ + 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" }, } }, ++ ["UniqueGlobalColdSpellGemsLevel1"] = { affix = "", "+(5-7) to Level of all Cold Spell Skills", statOrder = { 961 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { }, weightVal = { }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, 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" }, } }, +@@ -1110,9 +1110,9 @@ return { + ["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" }, } }, ++ ["UniqueFireDamageOnWeapon1"] = { affix = "", "(80-120)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamageWeaponPrefix", weightKey = { }, weightVal = { }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, 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 = { }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, 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 = { }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, 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" }, } }, +@@ -1487,18 +1487,18 @@ return { + ["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" }, } }, ++ ["UniqueIgniteChanceIncrease1"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "100% increased Flammability Magnitude" }, } }, ++ ["UniqueIgniteChanceIncrease2"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "100% increased Flammability Magnitude" }, } }, ++ ["UniqueIgniteChanceIncrease3"] = { affix = "", "50% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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 = { }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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 = { }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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 = { }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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 = { }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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 = { }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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 = { }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", }, 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 = { }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", }, 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 = { }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", }, 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 = { }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, +@@ -2699,7 +2699,7 @@ return { + ["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" }, } }, ++ ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 1901 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, 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] = { "" }, } }, +@@ -2723,7 +2723,7 @@ return { + ["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" }, } }, ++ ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 1901 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, 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" }, } }, +@@ -2781,7 +2781,7 @@ return { + ["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" }, } }, ++ ["SkeletonDurationUniqueTwoHandSword4"] = { affix = "", "(150-200)% increased Skeleton Duration", statOrder = { 1538 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, 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" }, } }, +@@ -3056,12 +3056,12 @@ return { + ["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" }, } }, ++ ["ZombieLifeUniqueSceptre3"] = { affix = "", "Raised Zombies have +5000 to maximum Life", statOrder = { 2370 }, level = 1, group = "ZombieLife", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, 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 = { }, tags = { "minion_unique_weapon", }, 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 = { }, tags = { "minion_unique_weapon", }, 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 = { }, tags = { "minion_unique_weapon", }, 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 = { }, tags = { "minion_unique_weapon", }, 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 = { }, tags = { "minion_unique_weapon", }, 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" }, } }, +@@ -3163,8 +3163,8 @@ return { + ["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" }, } }, ++ ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { affix = "", "8% increased Spell Damage per 5% Chance to Block Attack Damage", statOrder = { 2500 }, level = 1, group = "SpellDamagePerBlockChance", weightKey = { }, weightVal = { }, tags = { "caster_unique_weapon", }, 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 = { }, tags = { "caster_unique_weapon", }, 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" }, } }, +@@ -3335,8 +3335,8 @@ return { + ["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" }, } }, ++ ["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 = { }, tags = { "minion_unique_weapon", }, 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 = { }, tags = { "minion_unique_weapon", }, 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" }, } }, +@@ -3433,7 +3433,7 @@ return { + ["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" }, } }, ++ ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 496 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, tags = { "caster_unique_weapon", }, 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" }, } }, +@@ -3707,7 +3707,7 @@ return { + ["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" }, } }, ++ ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "2% increased Spell Damage per 10 Intelligence", statOrder = { 2501 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, tags = { "caster_unique_weapon", }, 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" }, } }, +@@ -3802,14 +3802,14 @@ return { + ["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__4"] = { affix = "", "Adds (40-60) to (90-110) Cold Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, tags = { "caster_unique_weapon", }, 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__4"] = { affix = "", "Adds 1 to (60-70) Lightning Damage to Spells", statOrder = { 1307 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, tags = { "caster_unique_weapon", }, 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" }, } }, +@@ -3877,7 +3877,7 @@ return { + ["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" }, } }, ++ ["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 = { }, tags = { "minion_unique_weapon", }, 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" }, } }, +@@ -3922,11 +3922,11 @@ return { + ["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__1"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3368 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, 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" }, } }, ++ ["GrantsLevel12StoneGolem"] = { affix = "", "Grants Level 12 Summon Stone Golem Skill", statOrder = { 462 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, 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" }, } }, +@@ -3953,7 +3953,7 @@ return { + ["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" }, } }, ++ ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 568 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, 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" }, } }, +@@ -3999,14 +3999,14 @@ return { + ["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" }, } }, ++ ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9112 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, 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" }, } }, ++ ["MinionsPoisonEnemiesOnHitUnique__1"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2900 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, 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 = { }, tags = { "minion_unique_weapon", }, 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" }, } }, +@@ -4166,10 +4166,10 @@ return { + ["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" }, } }, ++ ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { affix = "", "Minions deal 70% increased Damage if you've Hit Recently", statOrder = { 9039 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, 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 = { }, tags = { "minion_unique_weapon", }, 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" }, } }, ++ ["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 = { }, tags = { "caster_unique_weapon", }, 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" }, } }, +@@ -4196,7 +4196,7 @@ return { + ["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" }, } }, ++ ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2664 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, 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" }, } }, +@@ -4214,7 +4214,7 @@ return { + ["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" }, } }, ++ ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", statOrder = { 10003 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, tags = { "caster_unique_weapon", }, 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" }, } }, +@@ -4232,7 +4232,7 @@ return { + ["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" }, } }, ++ ["SummonSpidersOnKillUnique__1"] = { affix = "", "100% chance to Trigger Level 1 Raise Spiders on Kill", statOrder = { 567 }, level = 1, group = "GrantsSpiderMinion", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, 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" }, } }, +@@ -4361,7 +4361,7 @@ return { + ["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" }, } }, ++ ["LocalGrantsStormCascadeOnAttackUnique__1"] = { affix = "", "Trigger Level 20 Storm Cascade when you Attack", statOrder = { 543 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, tags = { "caster_unique_weapon", }, 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" }, } }, +@@ -4392,7 +4392,7 @@ return { + ["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" }, } }, ++ ["IncreasedCastSpeedPerPowerChargeUnique__1"] = { affix = "", "2% increased Cast Speed per Power Charge", statOrder = { 1349 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, tags = { "caster_unique_weapon", }, 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" }, } }, +@@ -4877,7 +4877,7 @@ return { + ["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" }, } }, ++ ["UniqueMutatedVaalIgniteChanceIncrease"] = { affix = "", "25% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, +@@ -4905,7 +4905,7 @@ return { + ["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" }, } }, ++ ["UniqueMutatedVaalIgniteChanceIncrease1"] = { affix = "", "(15-25)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, +@@ -5113,11 +5113,11 @@ return { + ["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" }, } }, ++ ["CorruptionUpgradeGlobalFireSpellGemsLevel1"] = { affix = "", "+2 to Level of all Fire Spell Skills", statOrder = { 959 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, 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 }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, 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 }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, 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 }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_lightning_spell_mods", "no_physical_spell_mods", }, 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 }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, +@@ -5157,7 +5157,7 @@ return { + ["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" }, } }, ++ ["CorruptionUpgradeFreezeDamageIncrease1"] = { affix = "", "(50-75)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, +@@ -5205,10 +5205,10 @@ return { + ["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" }, } }, ++ ["CorruptionUpgradeGlobalIncreaseFireSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Fire Spell Skills", statOrder = { 959 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, 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 = { }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, 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 = { }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, 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 = { }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, +@@ -5256,7 +5256,7 @@ return { + ["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" }, } }, ++ ["ItemCanAlsoRollRingMods"] = { affix = "", "Can roll Ring Modifiers", statOrder = { 6166 }, level = 1, group = "ItemCanAlsoRollRingMods", weightKey = { }, weightVal = { }, tags = { "ring", "genesis_tree_caster", "genesis_tree_minion", }, 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" }, } }, +@@ -5476,7 +5476,7 @@ return { + ["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" }, } }, ++ ["TwistedEmpyreanVerisiumImplicitFreezeBuildup1"] = { affix = "", "(200-300)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, diff --git a/src/Data/ModJewel.lua.rej b/src/Data/ModJewel.lua.rej new file mode 100644 index 00000000000..ae55e16c332 --- /dev/null +++ b/src/Data/ModJewel.lua.rej @@ -0,0 +1,45 @@ +diff a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua (rejected hunks) +@@ -73,10 +73,10 @@ return { + ["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" }, } }, ++ ["JewelFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(10-20)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, ++ ["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 }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, +@@ -133,7 +133,7 @@ return { + ["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" }, } }, ++ ["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 }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, +@@ -254,10 +254,10 @@ return { + ["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" }, } }, ++ ["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 }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, ++ ["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 }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, +@@ -311,7 +311,7 @@ return { + ["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" }, } }, ++ ["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 }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", }, 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" }, } }, diff --git a/src/Data/ModVeiled.lua.rej b/src/Data/ModVeiled.lua.rej new file mode 100644 index 00000000000..a7d272b3ade --- /dev/null +++ b/src/Data/ModVeiled.lua.rej @@ -0,0 +1,12610 @@ +diff a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua (rejected hunks) +@@ -1,12217 +1,393 @@ + -- This file is automatically generated, do not edit! +--- Game data (c) Grinding Gear Games ++-- Item data (c) Grinding Gear Games + +--- Item modifier data generated by mods.lua +- +--- spell-checker: disable + return { +- ["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, +- }, +- }, +-} ++ ["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 diff --git a/src/Data/QueryMods.lua.rej b/src/Data/QueryMods.lua.rej new file mode 100644 index 00000000000..55d94483f41 --- /dev/null +++ b/src/Data/QueryMods.lua.rej @@ -0,0 +1,146 @@ +diff a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua (rejected hunks) +@@ -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.rej b/src/Data/TimelessJewelData/LegionPassives.lua.rej new file mode 100644 index 00000000000..c4b243b8a09 --- /dev/null +++ b/src/Data/TimelessJewelData/LegionPassives.lua.rej @@ -0,0 +1,23015 @@ +diff a/src/Data/TimelessJewelData/LegionPassives.lua b/src/Data/TimelessJewelData/LegionPassives.lua (rejected hunks) +@@ -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/Export/Scripts/flavourText.lua.rej b/src/Export/Scripts/flavourText.lua.rej new file mode 100644 index 00000000000..0654ae2d105 --- /dev/null +++ b/src/Export/Scripts/flavourText.lua.rej @@ -0,0 +1,10 @@ +diff a/src/Export/Scripts/flavourText.lua b/src/Export/Scripts/flavourText.lua (rejected hunks) +@@ -17,8 +17,6 @@ local function cleanAndSplit(str) + for line in str:gmatch("[^\n]+") do + line = line:match("^%s*(.-)%s*$") -- trim each line + if line ~= "" then +- -- Escape quotes +- line = line:gsub('"', '\\"') + table.insert(lines, line) + end + end diff --git a/src/Export/Scripts/legionPassives.lua b/src/Export/Scripts/legionPassives.lua index c1d75777561..13cdd13217e 100644 --- a/src/Export/Scripts/legionPassives.lua +++ b/src/Export/Scripts/legionPassives.lua @@ -66,7 +66,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 +73,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 +214,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/legionPassives.lua.rej b/src/Export/Scripts/legionPassives.lua.rej new file mode 100644 index 00000000000..0b703779ef9 --- /dev/null +++ b/src/Export/Scripts/legionPassives.lua.rej @@ -0,0 +1,9 @@ +diff a/src/Export/Scripts/legionPassives.lua b/src/Export/Scripts/legionPassives.lua (rejected hunks) +@@ -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"] = { diff --git a/src/Export/Scripts/mods.lua.rej b/src/Export/Scripts/mods.lua.rej new file mode 100644 index 00000000000..69da5f77503 --- /dev/null +++ b/src/Export/Scripts/mods.lua.rej @@ -0,0 +1,50 @@ +diff a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua (rejected hunks) +@@ -94,36 +94,19 @@ local function writeMods(outName, condFunc) + 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 ++ out:write('weightMultiplierKey = { ') ++ for _, tag in ipairs(mod.GenerationWeightTags) do ++ out:write('"', tag.Id, '", ') ++ end ++ out:write('}, ') ++ out:write('weightMultiplierVal = { ', table.concat(mod.GenerationWeightValues, ', '), ' }, ') ++ end ++ if mod.Tags[1] then ++ out:write('tags = { ') ++ for _, tag in ipairs(mod.Tags) do ++ out:write('"', tag.Id, '", ') + end ++ out:write('}, ') + end + out:write('modTags = { ', stats.modTags, ' }, ') + if mod.NodeType ~= 3 then diff --git a/src/Modules/Common.lua.rej b/src/Modules/Common.lua.rej new file mode 100644 index 00000000000..65234f41184 --- /dev/null +++ b/src/Modules/Common.lua.rej @@ -0,0 +1,44 @@ +diff a/src/Modules/Common.lua b/src/Modules/Common.lua (rejected hunks) +@@ -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 00000000000..2851b0b9085 --- /dev/null +++ b/src/Modules/Utils.lua @@ -0,0 +1,113 @@ +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 + local str = allowNewlines and value or value:gsub("\r\n", " "):gsub("[\r\n]", " ") + buf[#buf + 1] = string.format("%q", str) + 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 + buf[#buf + 1] = indent .. "[" + writeStringify(buf, k, allowNewlines, nil) + buf[#buf + 1] = "] = " + 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